{% extends "base.html" %} {% block title %}{{ category_display }} Doctors - Quick Care Connect{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ category_display }} Doctors In Pakistan

{{ doctors|length }} Doctor{{ 's' if doctors|length != 1 else '' }} Found
Type
Fee
{% if cities %}
City
{% endif %}
Gender
Clear Filters
{% if doctors %} {% for doctor in doctors %} {% set user = doctor.user %}
{% if user.profile_picture %} {{ user.name }} {% else %}
{{ user.name[0].upper() }}
{% endif %}
{{ user.name }} {% if user.is_online %} Online {% endif %}
{% if doctor.is_verified %}
PMDC Verified
{% endif %}
{{ doctor.specialization or doctor.category }}
{% if doctor.education %}
{{ doctor.education }}
{% endif %} {% if doctor.services %}
{% for service in doctor.services.split(',') %} {% if service.strip() %} {{ service.strip() }} {% endif %} {% endfor %}
{% endif %}
{% set reviews_count = doctor.reviews|list|length %}
Reviews {{ reviews_count }}
Experience {{ doctor.experience|int }} Yrs
{% if reviews_count > 0 %}
Satisfaction 97%
{% endif %}
{% if doctor.has_video %} Video Call {% endif %} View Profile
{% if doctor.practices %} {% endif %}
{% endfor %} {% else %}
No Doctors Found
No {{ category_display.lower() }} doctors match your filters. Try adjusting them.
Browse All Categories
{% endif %}
{% endblock %}